home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
- Begin VB.Form form_open
- Caption = "Open"
- ClientHeight = 1530
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 5400
- LinkTopic = "Form2"
- ScaleHeight = 1530
- ScaleWidth = 5400
- StartUpPosition = 3 'Windows Default
- Begin MSComDlg.CommonDialog open_file
- Left = 120
- Top = 960
- _ExtentX = 847
- _ExtentY = 847
- _Version = 393216
- End
- Begin VB.CommandButton Command3
- Caption = "Browse"
- Height = 255
- Left = 4080
- TabIndex = 4
- Top = 600
- Width = 1215
- End
- Begin VB.TextBox open_file_name
- Height = 285
- Left = 120
- TabIndex = 3
- Top = 600
- Width = 3855
- End
- Begin VB.CommandButton file_cancel_ok
- Caption = "Cancel"
- Height = 255
- Left = 3600
- TabIndex = 2
- Top = 1200
- Width = 855
- End
- Begin VB.CommandButton file_open_ok
- Caption = "OK"
- Height = 255
- Left = 4560
- TabIndex = 1
- Top = 1200
- Width = 735
- End
- Begin VB.Label Label1
- Caption = "Type In The Location Of A File, Folder Or A Website Address The Click OK."
- Height = 375
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 3135
- End
- Attribute VB_Name = "form_open"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- End Sub
- Private Sub Command3_Click()
- Dim open_string As String
- open_file.CancelError = True
- On Error GoTo errhandler
- open_file.Filter = "All Files|*.*|Text Files|*.txt*|HTML Files|*.htm*|Gifs|*.gif|Jpegs|*.jpg"
- open_file.ShowOpen
- open_string = open_file.filename
- open_file_name.Text = open_string
- Exit Sub
- errhandler:
- End Sub
- Private Sub file_cancel_ok_Click()
- On Error Resume Next
- Unload Me
- End Sub
- Private Sub file_open_ok_Click()
- On Error Resume Next
- Form1.search_results.Navigate open_file_name.Text
- Unload Me
- End Sub
-